home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 3
/
Cream of the Crop 3.iso
/
utility
/
ffg155.zip
/
UTIL_BAT.ZIP
/
DELBAK.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-06-25
|
390b
|
15 lines
@echo off
cls
echo Here all .BAK files will be found and deleted. You will be asked to confirm
echo each file deletion.
echo.
echo Press any key to begin searching...
pause >nul
REM Note use of double %% below. Double %% are used instead of single % in
REM batch files.
echo on
ffg *:*.bak /eDEL%%_%%n
@echo off
echo Done. Press any key for next demonstration...
pause>nul